
/* navigation bar CSS rules here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color:#C9A227;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-left: 30px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-bottom: 15px;
  color: #C9A227;
}

.footer p {
  line-height: 1.6;
  max-width: 300px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color:#C9A227;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #C9A227;
  color: black;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #aaa;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}
body{
    margin:0;
    font-family:'Poppins', sans-serif;
    color:#222;
    overflow-x:hidden;
}

/* ================= HERO / ABOUT ================= */
.contact-hero{
    height: 35vh; /* slightly taller for better look */
    background: url("../images/home.png") center/cover no-repeat; /* use your image */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for readability */
.overlay{
    background: rgba(0,0,0,0.4); /* semi-transparent black */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Hero Title */
 .overlay h1{
  font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* makes text readable on image */
    animation: fadeDown 1s ease;
 }
/* Hero Subtitle */
.overlay p{
 margin-top:15px;
    font-size:18px;
    letter-spacing: 1px;
 color:#C9A227;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    animation: fadeUp 1.2s ease;
}

/* Animations */
@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:900px){
    .overlay h1{
        font-size: 40px;
    }
    .overlay p{
        font-size: 16px;
    }
}
/* ===== DROPDOWN ===== */
/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  min-width: 200px;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #C9A227;
  color: black;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 100px 80px;
  background: #f6f1e8;
}

.contact-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #C9A227;
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-info {
  flex: 1;
  padding-left: 40px;
}

.info-box {
  display: flex;
  gap: 15px;
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box i {
  font-size: 20px;
  color: #C9A227;
  margin-top: 5px;
}

.info-box h4 {
  margin-bottom: 5px;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #C9A227;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0c0c0c;
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}.back-container{
  padding: 20px 8%;
}

.back-btn{
  background: #C9A227;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.back-btn:hover{
  background: #000;
  color: #C9A227;
}

